home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / sparcmgr / src.zoo / src / blit / README < prev    next >
Encoding:
Text File  |  1989-01-24  |  1.6 KB  |  41 lines

  1. #                        Copyright (c) 1988 Bellcore
  2. #                            All Rights Reserved
  3. #       Permission is granted to copy or use this program, EXCEPT that it
  4. #       may not be sold for profit, the copyright notice must be reproduced
  5. #       on copies, and credit should be given to Bellcore where it is due.
  6. #       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  7.  
  8. #    $Header: README,v 4.1 88/06/21 13:14:24 bianchi Exp $
  9. #    $Source: /tmp/mgrsrc/src/blit/RCS/README,v $
  10.  
  11. This is the 68020 bit-blit code using bit field instructions.  The 3
  12. source files are:
  13.  
  14. * blit.C        for bit-blts
  15. * line.C        for lines
  16. * pixel.C    for bliting 'points'
  17.  
  18. Strategy:
  19. This is an attempt to build *fast* 68020 specific bit-blit code in an
  20. operating environment independent fashion. Although the bit-blit code is
  21. written in a combination of C and assembler, the compiler and assembler
  22. specific parts are parameterized.
  23.  
  24. * The files m4.h and asm.h contain the assembler specific syntax for the 
  25.   required asms.  It would be nice to do this all with cpp, but cpp won't
  26.   do the substitutions inside quoted strings.
  27.  
  28. * sym - The SYMbolic asm processor permits the reference to C register
  29.   variables from within asm statements.  Thus the C compiler is free to
  30.   assign registers as it wishes.  Sym filters the "cc -S -g" output
  31.   replacing the symbolic names from the asm's with the proper register
  32.   names by interpreting the symbol table entries grenerated by -g.
  33.   Sym is symbol table entry specific.
  34.  
  35. * The result asm file is run through the optimizer, which doesn't
  36.   do much, especially as it things all memory references have side-effects.
  37.  
  38.  
  39. Stephen A. Uhler
  40.  
  41.